tools: python -> $(PYTHON)
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 9 Jul 2009 15:06:52 +0000 (16:06 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 9 Jul 2009 15:06:52 +0000 (16:06 +0100)
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
tools/include/xen-foreign/Makefile

index f770cf4de52b366c588f642fc13d18cecbe54e4e..77a535f4d048b9a583bf30e3949fbb55bae553d0 100644 (file)
@@ -23,13 +23,13 @@ check-headers: checker
        rm tmp.size
 
 x86_32.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
-       python $< $* $@ $(filter %.h,$^)
+       $(PYTHON) $< $* $@ $(filter %.h,$^)
 
 x86_64.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_64.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
-       python $< $* $@ $(filter %.h,$^)
+       $(PYTHON) $< $* $@ $(filter %.h,$^)
 
 ia64.h: mkheader.py structs.py $(ROOT)/arch-ia64.h $(ROOT)/xen.h
-       python $< $* $@ $(filter %.h,$^)
+       $(PYTHON) $< $* $@ $(filter %.h,$^)
 
 checker.c: mkchecker.py structs.py
-       python $< $@ $(architectures)
+       $(PYTHON) $< $@ $(architectures)